home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Views / VerticalSpacer.cp < prev    next >
Text File  |  1997-06-28  |  283b  |  21 lines

  1. // VerticalSpacer.cp
  2.  
  3. #ifndef VerticalSpacer_h
  4. #include "VerticalSpacer.h"
  5. #endif
  6.  
  7. uint16 VerticalSpacer::MinimumHeight() const
  8.   {
  9.     return height;
  10.   }
  11.  
  12. uint16 VerticalSpacer::MaximumHeight() const
  13.   {
  14.     return height;
  15.   }
  16.  
  17. uint16 VerticalSpacer::BestWidth() const
  18.   {
  19.     return 0;
  20.   }
  21.